home *** CD-ROM | disk | FTP | other *** search
- package sun.io;
-
- import sun.nio.cs.MS1254;
-
- public class CharToByteCp1254 extends CharToByteSingleByte {
- private static final MS1254 nioCoder = new MS1254();
-
- public String getCharacterEncoding() {
- return "Cp1254";
- }
-
- public CharToByteCp1254() {
- super.mask1 = 65280;
- super.mask2 = 255;
- super.shift = 8;
- super.index1 = nioCoder.getEncoderIndex1();
- super.index2 = nioCoder.getEncoderIndex2();
- }
- }
-